home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part2 / cat4 / lotest.4 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. artest(1)                      Scilab Function                      artest(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   lotest - demo of the Lorenz attractor
  13.  
  14. CALLING SEQUENCE
  15.   []=lotest([f_l,odem,xdim,npts,pinit])
  16.   [y]=lorenz(t,x)
  17.   []=ilo(sig,ro,beta)
  18.   []=ilof(sig,ro,beta)
  19.  
  20. PARAMETERS
  21.   f_l  : can be "loren" or lorenz. it is the name of the external for the
  22.        Lorenz system.  "loren" will use a Fortran coded version of the lorenz
  23.        system and arnold will and loren will use a Scilab coded
  24.        version.lorentz is the Scilab macro which code the lorenz system.
  25.         This macro is loaded when calling lotest.
  26.   ilof, ilo
  27.        :are used to fix the parameters of the Fortran and Scilab code version
  28.        of the Lorenz system.
  29.   odem,xdim,npts
  30.        : are optional arguments. Their meaning and syntax can be found in the
  31.        portr3d help
  32. DESCRIPTION
  33.   A call to the function lotest() will interactively display a phase portrait
  34.   of  a the following dynamical system
  35.           y(1)=sig*(x(2)-x(1));
  36.           y(2)=ro*x(1) -x(2)-x(1)*x(3);
  37.           y(3)=-beta*x(3)+x(1)*x(2);
  38.  
  39. SEE ALSO
  40.   portr3d,ode,chaintest,lotest
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.